home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 36 / PC Gamer IT CD 36 2-2.iso / VIGDEMO / data1.cab / Assets / scripts / Human.e < prev    next >
Text File  |  1998-09-21  |  659b  |  36 lines

  1. int Forward(int objectptr,int steps) {
  2.     CAction( objectptr, "n", "Forward" , steps);
  3.     return steps;
  4.  
  5. }
  6.  
  7. int Backward(int objectptr,int steps) {
  8.     CAction( objectptr, "n", "Backward" , steps);
  9.  
  10.   return steps;
  11.  
  12. }
  13. int TurnLeft(int objectptr,int steps) {
  14.     CAction( objectptr, "n", "TurnLeft" , steps);
  15.  
  16.   return steps;
  17.  
  18. }
  19. int TurnRight(int objectptr,int steps) {
  20.     CAction( objectptr, "n", "TurnRight" , steps);
  21.   return steps;
  22.  
  23. }
  24. int Jump(int objectptr,int steps) {
  25.     CAction( objectptr, "n", "Jump" , steps);
  26.  
  27.   return steps;
  28.  
  29. }
  30. int Fire(int objectptr,int steps) {
  31.     CAction( objectptr, "n", "Fire" , steps);
  32.  
  33.   return steps;
  34.  
  35. }
  36.